Federico Igne ยท OxRAM
a version control system.
keeps track of code snapshots in time.
decentralised and content agnostic.
Linux: <packman> install git
MacOS: install โXcode Command Line Toolsโ ๐ค
Windows (most likely 64-bit):
git init
git clone <url>
git status
git log and variations
git show <commit>
git add <path>
git restore <path>
git commitgit branch
git branch <name>
git checkout <target>
git checkout -b <name> <target>
git merge
git remote
git pull <remote> <branch>
git push <remote> <branch>
โfear of committingโ
breaking things
man pages (man git <command>)
Cheatsheet (PDF)
Oh my Git!? game